d04db79ac757be21b1c0d60a16c007208f3fbfd2,src/main/java/com/vtence/molecule/http/ContentType.java,ContentType,of,#Response#,25

Before Change


    }

    public static ContentType of(Response response) {
        return parse(response.header(CONTENT_TYPE));
    }

    public static ContentType of(Request request) {

After Change


    }

    public static ContentType of(Response response) {
        String header = response.header(CONTENT_TYPE);
        return header != null ? parse(header) : null;
    }

    public static ContentType parse(String header) {